Quickbook API
Retrieving a specific booking product details
GET '/products/details'
Description
Get particular product details.
Authorization
The Authorization
header carried the API access token in the format AL client_id:client_secret
. Please see Security page for more information.
Content type
application/json
Query Parameters
Parameters | Description | Required? |
---|---|---|
code | Code associated with a specific product | true |
Response
{
"service": {
"code": "large_car",
"name": "Select+",
"description": "Everyday choice and comfort - professional driver and MPV/people carrier for up to 6 people.",
"image": "",
"type": "passenger",
"passengers": 4,
"luggage": 2
}
}
Parameters | Description |
---|---|
code | Code associated with a specific product |
name | Booking product name |
description | Booking product description |
image | Graphics representation of the product |
type | Booking product type |
passengers | Number of passengers allowed for this product |
luggage | Number of luggage allowed for this product |